func vendor/golang.org/x/crypto/internal/poly1305.bitsAdd64
16 uses
vendor/golang.org/x/crypto/internal/poly1305 (current package)
bits_go1.13.go#L12: func bitsAdd64(x, y, carry uint64) (sum, carryOut uint64) {
sum_generic.go#L122: lo, c := bitsAdd64(a.lo, b.lo, 0)
sum_generic.go#L123: hi, c := bitsAdd64(a.hi, b.hi, c)
sum_generic.go#L158: h0, c = bitsAdd64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0)
sum_generic.go#L159: h1, c = bitsAdd64(h1, binary.LittleEndian.Uint64(msg[8:16]), c)
sum_generic.go#L168: h0, c = bitsAdd64(h0, binary.LittleEndian.Uint64(buf[0:8]), 0)
sum_generic.go#L169: h1, c = bitsAdd64(h1, binary.LittleEndian.Uint64(buf[8:16]), c)
sum_generic.go#L222: t1, c := bitsAdd64(m1.lo, m0.hi, 0)
sum_generic.go#L223: t2, c := bitsAdd64(m2.lo, m1.hi, c)
sum_generic.go#L224: t3, _ := bitsAdd64(m3.lo, m2.hi, c)
sum_generic.go#L246: h0, c = bitsAdd64(h0, cc.lo, 0)
sum_generic.go#L247: h1, c = bitsAdd64(h1, cc.hi, c)
sum_generic.go#L252: h0, c = bitsAdd64(h0, cc.lo, 0)
sum_generic.go#L253: h1, c = bitsAdd64(h1, cc.hi, c)
sum_generic.go#L304: h0, c := bitsAdd64(h0, s[0], 0)
sum_generic.go#L305: h1, _ = bitsAdd64(h1, s[1], c)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |